home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / comm / misc / xqsrc931030.lzh / makedoc < prev    next >
Text File  |  1992-12-10  |  478b  |  33 lines

  1. /*
  2.  *        Make xferq.library documentation
  3.  */
  4.  
  5. parse arg pwfile docfile
  6.  
  7. /*
  8.  *        Set up the printer device to use a transparent homebrew ANSI
  9.  *        printer driver.
  10.  */
  11.  
  12. address command
  13. 'printer sys:prefs/presets/ansi.printer use'
  14.  
  15. /*
  16.  *        Use CMD to redirect the printer output to a file.
  17.  */
  18.  
  19. 'run cmd parallel ' || docfile
  20.  
  21. /*
  22.  *        The docs are done in ProWrite.  So... :-)
  23.  */
  24.  
  25. 'run bin:prowrite/prowrite ' || pwfile
  26. 'WaitForPort "ProWrite"'
  27.  
  28. address "ProWrite"
  29.  
  30. 'PrintOne'
  31. 'Quit'
  32.  
  33.